home *** CD-ROM | disk | FTP | other *** search
- /*
- * devDiskStats.h --
- *
- * Declarations of routines for collecting statistics on Sprite disk
- * usage.
- *
- * Copyright 1989 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/diskStats.h,v 9.1 90/09/11 12:13:21 rab Exp $ SPRITE (Berkeley)
- */
-
- #ifndef _DISKSTATS
- #define _DISKSTATS
-
-
- /* procedures */
-
- extern DevDiskStats *DevRegisterDisk _ARGS_((Fs_Device *devicePtr, char *deviceName, Boolean (*idleCheck)(), ClientData clientData));
- extern void Dev_GatherDiskStats _ARGS_((void));
- extern int Dev_GetDiskStats _ARGS_((Sys_DiskStats *diskStatArr, int numEntries));
-
- #endif /* _DISKSTATS */
-
-